:root{ --brand:#01b6e9 }

/* Ortak banner tabanı: about + contact */
.about-hero,
.contact-hero{
  --ink:#0f172a;
  background:linear-gradient(180deg,#f6fbff 0%, #ffffff 100%);
  min-height:clamp(220px,38vh,320px);
  display:flex;
  align-items:center;
  text-align:center;
  color:var(--ink);
  border-bottom:1px solid #eef2f7;
}

/* İç kap: genişlik ve iç boşluk */
.about-hero-content,
.contact-hero-content{
  width:min(1200px,94%);
  margin:0 auto;
  padding:clamp(18px,4vw,32px) 0;
}

/* Başlık */
.about-hero h1,
.contact-hero h1{
  margin:0;
  font-weight:900;
  letter-spacing:.01em;
  line-height:1.06;
  font-size:clamp(34px,6.5vw,64px);
}

/* Marka çizgisi */
.about-hero h1::after,
.contact-hero h1::after{
  content:"";
  display:block;
  width:140px;
  height:8px;
  border-radius:8px;
  background:var(--brand);
  margin:14px auto 0;
}

/* Açıklama */
.about-hero p,
.contact-hero p{
  margin:12px auto 0;
  color:#5d6673;
  font-size:clamp(14px,1.8vw,18px);
  max-width:920px;
}

/* (Opsiyonel) görselli koyu versiyon gerektiğinde: */
/*
.contact-hero--image{
  color:#fff;
  background:
    linear-gradient(180deg,rgba(8,22,30,.58),rgba(8,22,30,.5)),
    var(--hero) center/cover no-repeat;
  border-bottom-color:rgba(255,255,255,.15);
}
*/

body {
  font-family: 'Inter', Arial, sans-serif;
  background: #f8fafc;
  color: #222;
  margin: 0;
}

.contact-hero {
  min-height: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  position: relative;
  box-shadow: 0 8px 32px rgba(37,99,235,0.10);
  margin-bottom: 32px;
}

.contact-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  z-index: 1;
}

.contact-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 40px 24px 32px 24px;
  max-width: 700px;
}

.contact-hero-content h1 {
  font-size: 2.3rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-top: 150px;
  letter-spacing: 1px;
  font-family: 'Inter', Arial, sans-serif;
}

.contact-hero-content p {
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.96;
  text-shadow: 0 1px 8px #0004;
}

.contact-flex {
  display: flex;
  gap: 48px;
  max-width: 1100px;
  margin: 0 auto 48px auto;
  padding: 0 24px;
  align-items: stretch;
  flex-wrap: wrap;
}

.contact-info {
  flex: 1 1 320px;
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 4px 24px #0001;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 260px;
  max-width: 420px;
}

.contact-info h2 {
  font-size: 1.4rem;
  color: #01b6e9; /* Sarıya çevrildi */
  font-weight: 700;
  margin-bottom: 18px;
  letter-spacing: 0.5px;
}

.contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 18px;
  font-size: 1.08rem;
  color: #444;
}

.contact-list li i {
  color: #01b6e9; /* Sarıya çevrildi */
  font-size: 1.2rem;
  margin-top: 2px;
  min-width: 22px;
}

.contact-list li strong {
  color: #01b6e9; /* Sarıya çevrildi */
  font-weight: 600;
  margin-right: 6px;
  min-width: 80px;
  display: inline-block;
}

.contact-map {
  flex: 2 1 420px;
  min-width: 320px;
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 4px 24px #0001;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: none;
  display: block;
}

@media (max-width: 1000px) {
  .contact-flex {
    flex-direction: column;
    gap: 24px;
    padding: 0 8px;
  }
  .contact-map, .contact-info {
    max-width: 100%;
  }
  .contact-map iframe {
    min-height: 260px;
  }
}
